home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / usr / src / linux-headers-2.6.27-7 / init / Kconfig next >
Encoding:
Text File  |  2008-10-24  |  28.8 KB  |  922 lines

  1. config ARCH
  2.     string
  3.     option env="ARCH"
  4.  
  5. config KERNELVERSION
  6.     string
  7.     option env="KERNELVERSION"
  8.  
  9. config DEFCONFIG_LIST
  10.     string
  11.     depends on !UML
  12.     option defconfig_list
  13.     default "/lib/modules/$UNAME_RELEASE/.config"
  14.     default "/etc/kernel-config"
  15.     default "/boot/config-$UNAME_RELEASE"
  16.     default "$ARCH_DEFCONFIG"
  17.     default "arch/$ARCH/defconfig"
  18.  
  19. menu "General setup"
  20.  
  21. config EXPERIMENTAL
  22.     bool "Prompt for development and/or incomplete code/drivers"
  23.     ---help---
  24.       Some of the various things that Linux supports (such as network
  25.       drivers, file systems, network protocols, etc.) can be in a state
  26.       of development where the functionality, stability, or the level of
  27.       testing is not yet high enough for general use. This is usually
  28.       known as the "alpha-test" phase among developers. If a feature is
  29.       currently in alpha-test, then the developers usually discourage
  30.       uninformed widespread use of this feature by the general public to
  31.       avoid "Why doesn't this work?" type mail messages. However, active
  32.       testing and use of these systems is welcomed. Just be aware that it
  33.       may not meet the normal level of reliability or it may fail to work
  34.       in some special cases. Detailed bug reports from people familiar
  35.       with the kernel internals are usually welcomed by the developers
  36.       (before submitting bug reports, please read the documents
  37.       <file:README>, <file:MAINTAINERS>, <file:REPORTING-BUGS>,
  38.       <file:Documentation/BUG-HUNTING>, and
  39.       <file:Documentation/oops-tracing.txt> in the kernel source).
  40.  
  41.       This option will also make obsoleted drivers available. These are
  42.       drivers that have been replaced by something else, and/or are
  43.       scheduled to be removed in a future kernel release.
  44.  
  45.       Unless you intend to help test and develop a feature or driver that
  46.       falls into this category, or you have a situation that requires
  47.       using these features, you should probably say N here, which will
  48.       cause the configurator to present you with fewer choices. If
  49.       you say Y here, you will be offered the choice of using features or
  50.       drivers that are currently considered to be in the alpha-test phase.
  51.  
  52. config BROKEN
  53.     bool
  54.  
  55. config BROKEN_ON_SMP
  56.     bool
  57.     depends on BROKEN || !SMP
  58.     default y
  59.  
  60. config LOCK_KERNEL
  61.     bool
  62.     depends on SMP || PREEMPT
  63.     default y
  64.  
  65. config INIT_ENV_ARG_LIMIT
  66.     int
  67.     default 32 if !UML
  68.     default 128 if UML
  69.     help
  70.       Maximum of each of the number of arguments and environment
  71.       variables passed to init from the kernel command line.
  72.  
  73.  
  74. config LOCALVERSION
  75.     string "Local version - append to kernel release"
  76.     help
  77.       Append an extra string to the end of your kernel version.
  78.       This will show up when you type uname, for example.
  79.       The string you set here will be appended after the contents of
  80.       any files with a filename matching localversion* in your
  81.       object and source tree, in that order.  Your total string can
  82.       be a maximum of 64 characters.
  83.  
  84. config LOCALVERSION_AUTO
  85.     bool "Automatically append version information to the version string"
  86.     default y
  87.     help
  88.       This will try to automatically determine if the current tree is a
  89.       release tree by looking for git tags that belong to the current
  90.       top of tree revision.
  91.  
  92.       A string of the format -gxxxxxxxx will be added to the localversion
  93.       if a git-based tree is found.  The string generated by this will be
  94.       appended after any matching localversion* files, and after the value
  95.       set in CONFIG_LOCALVERSION.
  96.  
  97.       (The actual string used here is the first eight characters produced
  98.       by running the command:
  99.  
  100.         $ git rev-parse --verify HEAD
  101.  
  102.       which is done within the script "scripts/setlocalversion".)
  103.  
  104. config VERSION_SIGNATURE
  105.     string "Arbitrary version signature"
  106.     help
  107.       This string will be created in a file, /proc/version_signature. It
  108.       is useful in determining arbitrary data about your kernel. For instance,
  109.       if you have several kernels of the same version, but need to keep track
  110.       of a revision of the same kernel, but not affect it's ability to load
  111.       compatible modules, this is the easiest way to do that.
  112.  
  113. config SWAP
  114.     bool "Support for paging of anonymous memory (swap)"
  115.     depends on MMU && BLOCK
  116.     default y
  117.     help
  118.       This option allows you to choose whether you want to have support
  119.       for so called swap devices or swap files in your kernel that are
  120.       used to provide more virtual memory than the actual RAM present
  121.       in your computer.  If unsure say Y.
  122.  
  123. config SYSVIPC
  124.     bool "System V IPC"
  125.     ---help---
  126.       Inter Process Communication is a suite of library functions and
  127.       system calls which let processes (running programs) synchronize and
  128.       exchange information. It is generally considered to be a good thing,
  129.       and some programs won't run unless you say Y here. In particular, if
  130.       you want to run the DOS emulator dosemu under Linux (read the
  131.       DOSEMU-HOWTO, available from <http://www.tldp.org/docs.html#howto>),
  132.       you'll need to say Y here.
  133.  
  134.       You can find documentation about IPC with "info ipc" and also in
  135.       section 6.4 of the Linux Programmer's Guide, available from
  136.       <http://www.tldp.org/guides.html>.
  137.  
  138. config SYSVIPC_SYSCTL
  139.     bool
  140.     depends on SYSVIPC
  141.     depends on SYSCTL
  142.     default y
  143.  
  144. config POSIX_MQUEUE
  145.     bool "POSIX Message Queues"
  146.     depends on NET && EXPERIMENTAL
  147.     ---help---
  148.       POSIX variant of message queues is a part of IPC. In POSIX message
  149.       queues every message has a priority which decides about succession
  150.       of receiving it by a process. If you want to compile and run
  151.       programs written e.g. for Solaris with use of its POSIX message
  152.       queues (functions mq_*) say Y here.
  153.  
  154.       POSIX message queues are visible as a filesystem called 'mqueue'
  155.       and can be mounted somewhere if you want to do filesystem
  156.       operations on message queues.
  157.  
  158.       If unsure, say Y.
  159.  
  160. config BSD_PROCESS_ACCT
  161.     bool "BSD Process Accounting"
  162.     help
  163.       If you say Y here, a user level program will be able to instruct the
  164.       kernel (via a special system call) to write process accounting
  165.       information to a file: whenever a process exits, information about
  166.       that process will be appended to the file by the kernel.  The
  167.       information includes things such as creation time, owning user,
  168.       command name, memory usage, controlling terminal etc. (the complete
  169.       list is in the struct acct in <file:include/linux/acct.h>).  It is
  170.       up to the user level program to do useful things with this
  171.       information.  This is generally a good idea, so say Y.
  172.  
  173. config BSD_PROCESS_ACCT_V3
  174.     bool "BSD Process Accounting version 3 file format"
  175.     depends on BSD_PROCESS_ACCT
  176.     default n
  177.     help
  178.       If you say Y here, the process accounting information is written
  179.       in a new file format that also logs the process IDs of each
  180.       process and it's parent. Note that this file format is incompatible
  181.       with previous v0/v1/v2 file formats, so you will need updated tools
  182.       for processing it. A preliminary version of these tools is available
  183.       at <http://www.gnu.org/software/acct/>.
  184.  
  185. config TASKSTATS
  186.     bool "Export task/process statistics through netlink (EXPERIMENTAL)"
  187.     depends on NET
  188.     default n
  189.     help
  190.       Export selected statistics for tasks/processes through the
  191.       generic netlink interface. Unlike BSD process accounting, the
  192.       statistics are available during the lifetime of tasks/processes as
  193.       responses to commands. Like BSD accounting, they are sent to user
  194.       space on task exit.
  195.  
  196.       Say N if unsure.
  197.  
  198. config TASK_DELAY_ACCT
  199.     bool "Enable per-task delay accounting (EXPERIMENTAL)"
  200.     depends on TASKSTATS
  201.     help
  202.       Collect information on time spent by a task waiting for system
  203.       resources like cpu, synchronous block I/O completion and swapping
  204.       in pages. Such statistics can help in setting a task's priorities
  205.       relative to other tasks for cpu, io, rss limits etc.
  206.  
  207.       Say N if unsure.
  208.  
  209. config TASK_XACCT
  210.     bool "Enable extended accounting over taskstats (EXPERIMENTAL)"
  211.     depends on TASKSTATS
  212.     help
  213.       Collect extended task accounting data and send the data
  214.       to userland for processing over the taskstats interface.
  215.  
  216.       Say N if unsure.
  217.  
  218. config TASK_IO_ACCOUNTING
  219.     bool "Enable per-task storage I/O accounting (EXPERIMENTAL)"
  220.     depends on TASK_XACCT
  221.     help
  222.       Collect information on the number of bytes of storage I/O which this
  223.       task has caused.
  224.  
  225.       Say N if unsure.
  226.  
  227. config AUDIT
  228.     bool "Auditing support"
  229.     depends on NET
  230.     help
  231.       Enable auditing infrastructure that can be used with another
  232.       kernel subsystem, such as SELinux (which requires this for
  233.       logging of avc messages output).  Does not do system-call
  234.       auditing without CONFIG_AUDITSYSCALL.
  235.  
  236. config AUDITSYSCALL
  237.     bool "Enable system-call auditing support"
  238.     depends on AUDIT && (X86 || PPC || PPC64 || S390 || IA64 || UML || SPARC64|| SUPERH)
  239.     default y if SECURITY_SELINUX
  240.     help
  241.       Enable low-overhead system-call auditing infrastructure that
  242.       can be used independently or with another kernel subsystem,
  243.       such as SELinux.  To use audit's filesystem watch feature, please
  244.       ensure that INOTIFY is configured.
  245.  
  246. config AUDIT_TREE
  247.     def_bool y
  248.     depends on AUDITSYSCALL && INOTIFY
  249.  
  250. config IKCONFIG
  251.     tristate "Kernel .config support"
  252.     ---help---
  253.       This option enables the complete Linux kernel ".config" file
  254.       contents to be saved in the kernel. It provides documentation
  255.       of which kernel options are used in a running kernel or in an
  256.       on-disk kernel.  This information can be extracted from the kernel
  257.       image file with the script scripts/extract-ikconfig and used as
  258.       input to rebuild the current kernel or to build another kernel.
  259.       It can also be extracted from a running kernel by reading
  260.       /proc/config.gz if enabled (below).
  261.  
  262. config IKCONFIG_PROC
  263.     bool "Enable access to .config through /proc/config.gz"
  264.     depends on IKCONFIG && PROC_FS
  265.     ---help---
  266.       This option enables access to the kernel configuration file
  267.       through /proc/config.gz.
  268.  
  269. config LOG_BUF_SHIFT
  270.     int "Kernel log buffer size (16 => 64KB, 17 => 128KB)"
  271.     range 12 21
  272.     default 17
  273.     help
  274.       Select kernel log buffer size as a power of 2.
  275.       Examples:
  276.                17 => 128 KB
  277.              16 => 64 KB
  278.                  15 => 32 KB
  279.                  14 => 16 KB
  280.              13 =>  8 KB
  281.              12 =>  4 KB
  282.  
  283. config CGROUPS
  284.     bool "Control Group support"
  285.     help
  286.       This option will let you use process cgroup subsystems
  287.       such as Cpusets
  288.  
  289.       Say N if unsure.
  290.  
  291. config CGROUP_DEBUG
  292.     bool "Example debug cgroup subsystem"
  293.     depends on CGROUPS
  294.     default n
  295.     help
  296.       This option enables a simple cgroup subsystem that
  297.       exports useful debugging information about the cgroups
  298.       framework
  299.  
  300.       Say N if unsure
  301.  
  302. config CGROUP_NS
  303.         bool "Namespace cgroup subsystem"
  304.         depends on CGROUPS
  305.         help
  306.           Provides a simple namespace cgroup subsystem to
  307.           provide hierarchical naming of sets of namespaces,
  308.           for instance virtual servers and checkpoint/restart
  309.           jobs.
  310.  
  311. config CGROUP_DEVICE
  312.     bool "Device controller for cgroups"
  313.     depends on CGROUPS && EXPERIMENTAL
  314.     help
  315.       Provides a cgroup implementing whitelists for devices which
  316.       a process in the cgroup can mknod or open.
  317.  
  318. config CPUSETS
  319.     bool "Cpuset support"
  320.     depends on SMP && CGROUPS
  321.     help
  322.       This option will let you create and manage CPUSETs which
  323.       allow dynamically partitioning a system into sets of CPUs and
  324.       Memory Nodes and assigning tasks to run only within those sets.
  325.       This is primarily useful on large SMP or NUMA systems.
  326.  
  327.       Say N if unsure.
  328.  
  329. #
  330. # Architectures with an unreliable sched_clock() should select this:
  331. #
  332. config HAVE_UNSTABLE_SCHED_CLOCK
  333.     bool
  334.  
  335. config GROUP_SCHED
  336.     bool "Group CPU scheduler"
  337.     depends on EXPERIMENTAL
  338.     default n
  339.     help
  340.       This feature lets CPU scheduler recognize task groups and control CPU
  341.       bandwidth allocation to such task groups.
  342.  
  343. config FAIR_GROUP_SCHED
  344.     bool "Group scheduling for SCHED_OTHER"
  345.     depends on GROUP_SCHED
  346.     default GROUP_SCHED
  347.  
  348. config RT_GROUP_SCHED
  349.     bool "Group scheduling for SCHED_RR/FIFO"
  350.     depends on EXPERIMENTAL
  351.     depends on GROUP_SCHED
  352.     default n
  353.     help
  354.       This feature lets you explicitly allocate real CPU bandwidth
  355.       to users or control groups (depending on the "Basis for grouping tasks"
  356.       setting below. If enabled, it will also make it impossible to
  357.       schedule realtime tasks for non-root users until you allocate
  358.       realtime bandwidth for them.
  359.       See Documentation/sched-rt-group.txt for more information.
  360.  
  361. choice
  362.     depends on GROUP_SCHED
  363.     prompt "Basis for grouping tasks"
  364.     default USER_SCHED
  365.  
  366. config USER_SCHED
  367.     bool "user id"
  368.     help
  369.       This option will choose userid as the basis for grouping
  370.       tasks, thus providing equal CPU bandwidth to each user.
  371.  
  372. config CGROUP_SCHED
  373.     bool "Control groups"
  374.      depends on CGROUPS
  375.      help
  376.       This option allows you to create arbitrary task groups
  377.       using the "cgroup" pseudo filesystem and control
  378.       the cpu bandwidth allocated to each such task group.
  379.       Refer to Documentation/cgroups.txt for more information
  380.       on "cgroup" pseudo filesystem.
  381.  
  382. endchoice
  383.  
  384. config CGROUP_CPUACCT
  385.     bool "Simple CPU accounting cgroup subsystem"
  386.     depends on CGROUPS
  387.     help
  388.       Provides a simple Resource Controller for monitoring the
  389.       total CPU consumed by the tasks in a cgroup
  390.  
  391. config RESOURCE_COUNTERS
  392.     bool "Resource counters"
  393.     help
  394.       This option enables controller independent resource accounting
  395.           infrastructure that works with cgroups
  396.     depends on CGROUPS
  397.  
  398. config MM_OWNER
  399.     bool
  400.  
  401. config CGROUP_MEM_RES_CTLR
  402.     bool "Memory Resource Controller for Control Groups"
  403.     depends on CGROUPS && RESOURCE_COUNTERS
  404.     select MM_OWNER
  405.     help
  406.       Provides a memory resource controller that manages both page cache and
  407.       RSS memory.
  408.  
  409.       Note that setting this option increases fixed memory overhead
  410.       associated with each page of memory in the system by 4/8 bytes
  411.       and also increases cache misses because struct page on many 64bit
  412.       systems will not fit into a single cache line anymore.
  413.  
  414.       Only enable when you're ok with these trade offs and really
  415.       sure you need the memory resource controller.
  416.  
  417.       This config option also selects MM_OWNER config option, which
  418.       could in turn add some fork/exit overhead.
  419.  
  420. config SYSFS_DEPRECATED
  421.     bool
  422.  
  423. config SYSFS_DEPRECATED_V2
  424.     bool "Create deprecated sysfs files"
  425.     depends on SYSFS
  426.     default y
  427.     select SYSFS_DEPRECATED
  428.     help
  429.       This option creates deprecated symlinks such as the
  430.       "device"-link, the <subsystem>:<name>-link, and the
  431.       "bus"-link. It may also add deprecated key in the
  432.       uevent environment.
  433.       None of these features or values should be used today, as
  434.       they export driver core implementation details to userspace
  435.       or export properties which can't be kept stable across kernel
  436.       releases.
  437.  
  438.       If enabled, this option will also move any device structures
  439.       that belong to a class, back into the /sys/class hierarchy, in
  440.       order to support older versions of udev and some userspace
  441.       programs.
  442.  
  443.       If you are using a distro with the most recent userspace
  444.       packages, it should be safe to say N here.
  445.  
  446. config PROC_PID_CPUSET
  447.     bool "Include legacy /proc/<pid>/cpuset file"
  448.     depends on CPUSETS
  449.     default y
  450.  
  451. config RELAY
  452.     bool "Kernel->user space relay support (formerly relayfs)"
  453.     help
  454.       This option enables support for relay interface support in
  455.       certain file systems (such as debugfs).
  456.       It is designed to provide an efficient mechanism for tools and
  457.       facilities to relay large amounts of data from kernel space to
  458.       user space.
  459.  
  460.       If unsure, say N.
  461.  
  462. config NAMESPACES
  463.     bool "Namespaces support" if EMBEDDED
  464.     default !EMBEDDED
  465.     help
  466.       Provides the way to make tasks work with different objects using
  467.       the same id. For example same IPC id may refer to different objects
  468.       or same user id or pid may refer to different tasks when used in
  469.       different namespaces.
  470.  
  471. config UTS_NS
  472.     bool "UTS namespace"
  473.     depends on NAMESPACES
  474.     help
  475.       In this namespace tasks see different info provided with the
  476.       uname() system call
  477.  
  478. config IPC_NS
  479.     bool "IPC namespace"
  480.     depends on NAMESPACES && SYSVIPC
  481.     help
  482.       In this namespace tasks work with IPC ids which correspond to
  483.       different IPC objects in different namespaces
  484.  
  485. config USER_NS
  486.     bool "User namespace (EXPERIMENTAL)"
  487.     depends on NAMESPACES && EXPERIMENTAL
  488.     help
  489.       This allows containers, i.e. vservers, to use user namespaces
  490.       to provide different user info for different servers.
  491.       If unsure, say N.
  492.  
  493. config PID_NS
  494.     bool "PID Namespaces (EXPERIMENTAL)"
  495.     default n
  496.     depends on NAMESPACES && EXPERIMENTAL
  497.     help
  498.       Support process id namespaces.  This allows having multiple
  499.       process with the same pid as long as they are in different
  500.       pid namespaces.  This is a building block of containers.
  501.  
  502.       Unless you want to work with an experimental feature
  503.       say N here.
  504.  
  505. config BLK_DEV_INITRD
  506.     bool "Initial RAM filesystem and RAM disk (initramfs/initrd) support"
  507.     depends on BROKEN || !FRV
  508.     help
  509.       The initial RAM filesystem is a ramfs which is loaded by the
  510.       boot loader (loadlin or lilo) and that is mounted as root
  511.       before the normal boot procedure. It is typically used to
  512.       load modules needed to mount the "real" root file system,
  513.       etc. See <file:Documentation/initrd.txt> for details.
  514.  
  515.       If RAM disk support (BLK_DEV_RAM) is also included, this
  516.       also enables initial RAM disk (initrd) support and adds
  517.       15 Kbytes (more on some other architectures) to the kernel size.
  518.  
  519.       If unsure say Y.
  520.  
  521. if BLK_DEV_INITRD
  522.  
  523. source "usr/Kconfig"
  524.  
  525. endif
  526.  
  527. config CC_OPTIMIZE_FOR_SIZE
  528.     bool "Optimize for size"
  529.     default y
  530.     help
  531.       Enabling this option will pass "-Os" instead of "-O2" to gcc
  532.       resulting in a smaller kernel.
  533.  
  534.       If unsure, say Y.
  535.  
  536. config SYSCTL
  537.     bool
  538.  
  539. menuconfig EMBEDDED
  540.     bool "Configure standard kernel features (for small systems)"
  541.     help
  542.       This option allows certain base kernel options and settings
  543.           to be disabled or tweaked. This is for specialized
  544.           environments which can tolerate a "non-standard" kernel.
  545.           Only use this if you really know what you are doing.
  546.  
  547. config UID16
  548.     bool "Enable 16-bit UID system calls" if EMBEDDED
  549.     depends on ARM || BLACKFIN || CRIS || FRV || H8300 || X86_32 || M68K || (S390 && !64BIT) || SUPERH || SPARC32 || (SPARC64 && COMPAT) || UML || (X86_64 && IA32_EMULATION)
  550.     default y
  551.     help
  552.       This enables the legacy 16-bit UID syscall wrappers.
  553.  
  554. config SYSCTL_SYSCALL
  555.     bool "Sysctl syscall support" if EMBEDDED
  556.     default y
  557.     select SYSCTL
  558.     ---help---
  559.       sys_sysctl uses binary paths that have been found challenging
  560.       to properly maintain and use.  The interface in /proc/sys
  561.       using paths with ascii names is now the primary path to this
  562.       information.
  563.  
  564.       Almost nothing using the binary sysctl interface so if you are
  565.       trying to save some space it is probably safe to disable this,
  566.       making your kernel marginally smaller.
  567.  
  568.       If unsure say Y here.
  569.  
  570. config KALLSYMS
  571.      bool "Load all symbols for debugging/ksymoops" if EMBEDDED
  572.      default y
  573.      help
  574.        Say Y here to let the kernel print out symbolic crash information and
  575.        symbolic stack backtraces. This increases the size of the kernel
  576.        somewhat, as all symbols have to be loaded into the kernel image.
  577.  
  578. config KALLSYMS_ALL
  579.     bool "Include all symbols in kallsyms"
  580.     depends on DEBUG_KERNEL && KALLSYMS
  581.     help
  582.        Normally kallsyms only contains the symbols of functions, for nicer
  583.        OOPS messages.  Some debuggers can use kallsyms for other
  584.        symbols too: say Y here to include all symbols, if you need them 
  585.        and you don't care about adding 300k to the size of your kernel.
  586.  
  587.        Say N.
  588.  
  589. config KALLSYMS_EXTRA_PASS
  590.     bool "Do an extra kallsyms pass"
  591.     depends on KALLSYMS
  592.     help
  593.        If kallsyms is not working correctly, the build will fail with
  594.        inconsistent kallsyms data.  If that occurs, log a bug report and
  595.        turn on KALLSYMS_EXTRA_PASS which should result in a stable build.
  596.        Always say N here unless you find a bug in kallsyms, which must be
  597.        reported.  KALLSYMS_EXTRA_PASS is only a temporary workaround while
  598.        you wait for kallsyms to be fixed.
  599.  
  600.  
  601. config HOTPLUG
  602.     bool "Support for hot-pluggable devices" if EMBEDDED
  603.     default y
  604.     help
  605.       This option is provided for the case where no hotplug or uevent
  606.       capabilities is wanted by the kernel.  You should only consider
  607.       disabling this option for embedded systems that do not use modules, a
  608.       dynamic /dev tree, or dynamic device discovery.  Just say Y.
  609.  
  610. config PRINTK
  611.     default y
  612.     bool "Enable support for printk" if EMBEDDED
  613.     help
  614.       This option enables normal printk support. Removing it
  615.       eliminates most of the message strings from the kernel image
  616.       and makes the kernel more or less silent. As this makes it
  617.       very difficult to diagnose system problems, saying N here is
  618.       strongly discouraged.
  619.  
  620. config BUG
  621.     bool "BUG() support" if EMBEDDED
  622.     default y
  623.     help
  624.           Disabling this option eliminates support for BUG and WARN, reducing
  625.           the size of your kernel image and potentially quietly ignoring
  626.           numerous fatal conditions. You should only consider disabling this
  627.           option for embedded systems with no facilities for reporting errors.
  628.           Just say Y.
  629.  
  630. config ELF_CORE
  631.     default y
  632.     bool "Enable ELF core dumps" if EMBEDDED
  633.     help
  634.       Enable support for generating core dumps. Disabling saves about 4k.
  635.  
  636. config PCSPKR_PLATFORM
  637.     bool "Enable PC-Speaker support" if EMBEDDED
  638.     depends on ALPHA || X86 || MIPS || PPC_PREP || PPC_CHRP || PPC_PSERIES
  639.     default y
  640.     help
  641.           This option allows to disable the internal PC-Speaker
  642.           support, saving some memory.
  643.  
  644. config COMPAT_BRK
  645.     bool "Disable heap randomization"
  646.     default y
  647.     help
  648.       Randomizing heap placement makes heap exploits harder, but it
  649.       also breaks ancient binaries (including anything libc5 based).
  650.       This option changes the bootup default to heap randomization
  651.       disabled, and can be overriden runtime by setting
  652.       /proc/sys/kernel/randomize_va_space to 2.
  653.  
  654.       On non-ancient distros (post-2000 ones) N is usually a safe choice.
  655.  
  656. config BASE_FULL
  657.     default y
  658.     bool "Enable full-sized data structures for core" if EMBEDDED
  659.     help
  660.       Disabling this option reduces the size of miscellaneous core
  661.       kernel data structures. This saves memory on small machines,
  662.       but may reduce performance.
  663.  
  664. config FUTEX
  665.     bool "Enable futex support" if EMBEDDED
  666.     default y
  667.     select RT_MUTEXES
  668.     help
  669.       Disabling this option will cause the kernel to be built without
  670.       support for "fast userspace mutexes".  The resulting kernel may not
  671.       run glibc-based applications correctly.
  672.  
  673. config ANON_INODES
  674.     bool
  675.  
  676. config EPOLL
  677.     bool "Enable eventpoll support" if EMBEDDED
  678.     default y
  679.     select ANON_INODES
  680.     help
  681.       Disabling this option will cause the kernel to be built without
  682.       support for epoll family of system calls.
  683.  
  684. config SIGNALFD
  685.     bool "Enable signalfd() system call" if EMBEDDED
  686.     select ANON_INODES
  687.     default y
  688.     help
  689.       Enable the signalfd() system call that allows to receive signals
  690.       on a file descriptor.
  691.  
  692.       If unsure, say Y.
  693.  
  694. config TIMERFD
  695.     bool "Enable timerfd() system call" if EMBEDDED
  696.     select ANON_INODES
  697.     default y
  698.     help
  699.       Enable the timerfd() system call that allows to receive timer
  700.       events on a file descriptor.
  701.  
  702.       If unsure, say Y.
  703.  
  704. config EVENTFD
  705.     bool "Enable eventfd() system call" if EMBEDDED
  706.     select ANON_INODES
  707.     default y
  708.     help
  709.       Enable the eventfd() system call that allows to receive both
  710.       kernel notification (ie. KAIO) or userspace notifications.
  711.  
  712.       If unsure, say Y.
  713.  
  714. config SHMEM
  715.     bool "Use full shmem filesystem" if EMBEDDED
  716.     default y
  717.     depends on MMU
  718.     help
  719.       The shmem is an internal filesystem used to manage shared memory.
  720.       It is backed by swap and manages resource limits. It is also exported
  721.       to userspace as tmpfs if TMPFS is enabled. Disabling this
  722.       option replaces shmem and tmpfs with the much simpler ramfs code,
  723.       which may be appropriate on small systems without swap.
  724.  
  725. config VM_EVENT_COUNTERS
  726.     default y
  727.     bool "Enable VM event counters for /proc/vmstat" if EMBEDDED
  728.     help
  729.       VM event counters are needed for event counts to be shown.
  730.       This option allows the disabling of the VM event counters
  731.       on EMBEDDED systems.  /proc/vmstat will only show page counts
  732.       if VM event counters are disabled.
  733.  
  734. config SLUB_DEBUG
  735.     default y
  736.     bool "Enable SLUB debugging support" if EMBEDDED
  737.     depends on SLUB && SYSFS
  738.     help
  739.       SLUB has extensive debug support features. Disabling these can
  740.       result in significant savings in code size. This also disables
  741.       SLUB sysfs support. /sys/slab will not exist and there will be
  742.       no support for cache validation etc.
  743.  
  744. choice
  745.     prompt "Choose SLAB allocator"
  746.     default SLUB
  747.     help
  748.        This option allows to select a slab allocator.
  749.  
  750. config SLAB
  751.     bool "SLAB"
  752.     help
  753.       The regular slab allocator that is established and known to work
  754.       well in all environments. It organizes cache hot objects in
  755.       per cpu and per node queues. SLAB is the default choice for
  756.       a slab allocator.
  757.  
  758. config SLUB
  759.     bool "SLUB (Unqueued Allocator)"
  760.     help
  761.        SLUB is a slab allocator that minimizes cache line usage
  762.        instead of managing queues of cached objects (SLAB approach).
  763.        Per cpu caching is realized using slabs of objects instead
  764.        of queues of objects. SLUB can use memory efficiently
  765.        and has enhanced diagnostics.
  766.  
  767. config SLOB
  768.     depends on EMBEDDED
  769.     bool "SLOB (Simple Allocator)"
  770.     help
  771.        SLOB replaces the stock allocator with a drastically simpler
  772.        allocator. SLOB is generally more space efficient but
  773.        does not perform as well on large systems.
  774.  
  775. endchoice
  776.  
  777. config PROFILING
  778.     bool "Profiling support (EXPERIMENTAL)"
  779.     help
  780.       Say Y here to enable the extended profiling support mechanisms used
  781.       by profilers such as OProfile.
  782.  
  783. config MARKERS
  784.     bool "Activate markers"
  785.     help
  786.       Place an empty function call at each marker site. Can be
  787.       dynamically changed for a probe function.
  788.  
  789. source "arch/Kconfig"
  790.  
  791. config PROC_PAGE_MONITOR
  792.      default y
  793.     depends on PROC_FS && MMU
  794.     bool "Enable /proc page monitoring" if EMBEDDED
  795.      help
  796.       Various /proc files exist to monitor process memory utilization:
  797.       /proc/pid/smaps, /proc/pid/clear_refs, /proc/pid/pagemap,
  798.       /proc/kpagecount, and /proc/kpageflags. Disabling these
  799.           interfaces will reduce the size of the kernel by approximately 4kb.
  800.  
  801. endmenu        # General setup
  802.  
  803. config HAVE_GENERIC_DMA_COHERENT
  804.     bool
  805.     default n
  806.  
  807. config SLABINFO
  808.     bool
  809.     depends on PROC_FS
  810.     depends on SLAB || SLUB_DEBUG
  811.     default y
  812.  
  813. config RT_MUTEXES
  814.     boolean
  815.     select PLIST
  816.  
  817. config TINY_SHMEM
  818.     default !SHMEM
  819.     bool
  820.  
  821. config BASE_SMALL
  822.     int
  823.     default 0 if BASE_FULL
  824.     default 1 if !BASE_FULL
  825.  
  826. menuconfig MODULES
  827.     bool "Enable loadable module support"
  828.     help
  829.       Kernel modules are small pieces of compiled code which can
  830.       be inserted in the running kernel, rather than being
  831.       permanently built into the kernel.  You use the "modprobe"
  832.       tool to add (and sometimes remove) them.  If you say Y here,
  833.       many parts of the kernel can be built as modules (by
  834.       answering M instead of Y where indicated): this is most
  835.       useful for infrequently used options which are not required
  836.       for booting.  For more information, see the man pages for
  837.       modprobe, lsmod, modinfo, insmod and rmmod.
  838.  
  839.       If you say Y here, you will need to run "make
  840.       modules_install" to put the modules under /lib/modules/
  841.       where modprobe can find them (you may need to be root to do
  842.       this).
  843.  
  844.       If unsure, say Y.
  845.  
  846. if MODULES
  847.  
  848. config MODULE_FORCE_LOAD
  849.     bool "Forced module loading"
  850.     default n
  851.     help
  852.       Allow loading of modules without version information (ie. modprobe
  853.       --force).  Forced module loading sets the 'F' (forced) taint flag and
  854.       is usually a really bad idea.
  855.  
  856. config MODULE_UNLOAD
  857.     bool "Module unloading"
  858.     help
  859.       Without this option you will not be able to unload any
  860.       modules (note that some modules may not be unloadable
  861.       anyway), which makes your kernel smaller, faster
  862.       and simpler.  If unsure, say Y.
  863.  
  864. config MODULE_FORCE_UNLOAD
  865.     bool "Forced module unloading"
  866.     depends on MODULE_UNLOAD && EXPERIMENTAL
  867.     help
  868.       This option allows you to force a module to unload, even if the
  869.       kernel believes it is unsafe: the kernel will remove the module
  870.       without waiting for anyone to stop using it (using the -f option to
  871.       rmmod).  This is mainly for kernel developers and desperate users.
  872.       If unsure, say N.
  873.  
  874. config MODVERSIONS
  875.     bool "Module versioning support"
  876.     help
  877.       Usually, you have to use modules compiled with your kernel.
  878.       Saying Y here makes it sometimes possible to use modules
  879.       compiled for different kernels, by adding enough information
  880.       to the modules to (hopefully) spot any changes which would
  881.       make them incompatible with the kernel you are running.  If
  882.       unsure, say N.
  883.  
  884. config MODULE_SRCVERSION_ALL
  885.     bool "Source checksum for all modules"
  886.     help
  887.       Modules which contain a MODULE_VERSION get an extra "srcversion"
  888.       field inserted into their modinfo section, which contains a
  889.           sum of the source files which made it.  This helps maintainers
  890.       see exactly which source was used to build a module (since
  891.       others sometimes change the module source without updating
  892.       the version).  With this option, such a "srcversion" field
  893.       will be created for all modules.  If unsure, say N.
  894.  
  895. config KMOD
  896.     def_bool y
  897.     help
  898.       This is being removed soon.  These days, CONFIG_MODULES
  899.       implies CONFIG_KMOD, so use that instead.
  900.  
  901. endif # MODULES
  902.  
  903. config STOP_MACHINE
  904.     bool
  905.     default y
  906.     depends on (SMP && MODULE_UNLOAD) || HOTPLUG_CPU
  907.     help
  908.       Need stop_machine() primitive.
  909.  
  910. source "block/Kconfig"
  911.  
  912. config PREEMPT_NOTIFIERS
  913.     bool
  914.  
  915. config CLASSIC_RCU
  916.     def_bool !PREEMPT_RCU
  917.     help
  918.       This option selects the classic RCU implementation that is
  919.       designed for best read-side performance on non-realtime
  920.       systems.  Classic RCU is the default.  Note that the
  921.       PREEMPT_RCU symbol is used to select/deselect this option.
  922.